home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / WORDMISC / MICRODOC.LZH / EMACS.DIF < prev    next >
Text File  |  1987-11-27  |  791b  |  33 lines

  1. THIS FILE IS JUST A TEXT FILE, NOT A PATCH OR FIX FILE
  2. CHANGES TO MICRO-EMACS 3.9E TO COMPILE UNDER MSC QUICK C (MSDOS)
  3.  
  4. # These changes below will allow the Microsoft Quick C compiler to compile
  5. # the file crypt.c so that the linker will not say that the function mod95
  6. # is undeclared.
  7. > = the NEW crypt.c file
  8. < = the OLD crypt.c file
  9.  
  10.  
  11. 191c191
  12. > int mod95(val)
  13. ---
  14. < static int mod95(val)
  15.  
  16.  
  17. # These changes below will make the execute DOS command / Shell escape
  18. # work correctly nothing major at all. (I was using MSC Quick C V1.0).
  19. > = the NEW spawn.c file
  20. > = the OLD spawn.c file
  21.  
  22.  
  23. 32a33
  24. > extern int _doserrno;
  25. 690c691
  26. < #if    MSDOS & (TURBO | LATTICE | AZTEC)
  27. ---
  28. > #if    MSDOS & (TURBO | LATTICE | AZTEC | MSC)
  29. 825c826
  30. < #if    TURBO
  31. ---
  32. > #if    TURBO | MSC
  33.